home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / db / esm-3.1 / esm-3 / usr / local / sm / src / client / msg / makefile.optimize < prev    next >
Encoding:
Makefile  |  1996-05-05  |  632 b   |  25 lines

  1. INCLUDE = ../include
  2. DEBUGFLAG =
  3. CFLAGS = -I$(INCLUDE) -O2
  4.  
  5. MAINO = main.o
  6.  
  7. MAINC = main.c
  8.  
  9. FILESO = space.o connectServer.o openDisk.o closeDisk.o readBlock.o\
  10.         writeBlock.o receive.o
  11.  
  12. FILESC = space.c connectServer.c openDisk.c closeDisk.c readBlock.c\
  13.         writeBlock.c receive.c
  14.  
  15. client : clib.o ../cutil/cutil.o main.o
  16.     cc clib.o  ../cutil/cutil.o main.o -o client
  17.     cp client ..
  18.  
  19. clib.o : $(FILESO)
  20.        @echo ld -r ~~~ -o clib.o
  21.        @ld -r $(FILESO) -o clib.o
  22.  
  23. $(FILESO): $(INCLUDE)/ess.h $(INCLUDE)/list.h $(INCLUDE)/checking.h $(INCLUDE)/error.h\
  24.         $(INCLUDE)/link.h $(INCLUDE)/msgdefs.h $(INCLUDE)/host.h $(INCLUDE)/sysdefs.h
  25.